home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / TORELE~1.BAT < prev    next >
DOS Batch File  |  1997-06-14  |  232b  |  13 lines

  1. @ECHO OFF
  2.  
  3. CHDIR Release
  4.  
  5. ECHO Registering DLL and OCX components (release)
  6. FOR %%I IN (*.DLL) DO ..\Tools\RegSvr32 /s %%I
  7. ECHO Registering EXE servers (release)
  8. FOR %%I IN (*.EXE) DO %%I /regserver
  9.  
  10. CHDIR ..
  11.  
  12. ECHO Done
  13.